/* global rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: 'Work Sans', sans-serif;
}

.container{
    
    margin-right: auto;
    margin-left: auto;

    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width:400px){
    .container{
        width:380px;
    }
}
@media (min-width:600px){
    .container{
        width:577px;
    }
}
@media (min-width:990px){
    .container{
        width:970px;
    }
}
@media (min-width:1200px){
    .container{
        width:1170px;
    }
}
/* start header */


@media (min-width:400px){
    .container{
        width:380px;
    }
    .about_container{
        display: block;
    }
}
@media (min-width:600px){
    .container{
        width:577px;
    }
}
@media (min-width:990px){
    .container{
        width:970px;
    }
}
@media (min-width:1200px){
    .container{
        width:1170px;
    }
}
/* start header */

body {
    background-color: MintCream;
  }

.navbar{
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.brand{
    text-transform: capitalize;
    font-size: 25px;
    text-decoration: none;
    color:rgb(0, 0, 0);

}
.brand:hover{
    color:rgb(14, 18, 211);
}
.brand span{
    font-size: 30px;
    color: rgb(14, 18, 211);
}
.navbar-links ul{
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    opacity: .9;
    width: 100%;


}
.navbar-links li{
    list-style: none;
  width: 100%
}
.navbar-links li a{
    display:block;
    padding: 15px;
    text-decoration: none;
    text-transform:capitalize;
    color: rgb(0, 0, 0);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.navbar-links ul li a:hover{
    padding-left: 25px;
    color:rgb(14, 18, 211);
    border-bottom: 2px solid rgb(14, 18, 211) ;
}

.navbar-links li a:hover{
    color:rgb(14, 18, 211);
}
.toggle-button{
    position: absolute;
    top:.75rem;
    right:1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.toggle-button .bar{
    height: 2px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

@media (max-width:600px){
    .toggle-button{
        display: flex;
    }
    .navbar-links{
        display: none;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul{
        flex-direction: column;
        /* background-color: gray; */
    
    }
    .navbar-links li{
        text-align:center;
    }
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    .navbar-links.active{
        display: flex;
    }
    .landing{

        display: block;
    }
}

/* start gralary */;

h1{
    text-align: center;
    margin-bottom: 0;
}
p{
    color: rgb(0, 0, 0);
    text-align: center;
    font-size: 30px;
    font-weight: bolder;
}
.gallery_container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.gallery_container .gallery{
margin: 5px;
  border: 1px solid #ccc;
  width:30%;
  margin-left: 5px;
  margin-right: 5px;
  
}
.gallery_container .gallery:hover{
    border: 1px solid #777;
}
.gallery_container .gallery img{
        width: 100%;
        height: auto;
}
.gallery_container .desc {
    padding: 15px;
    text-align: center;
  }
 
@media (max-width:700px){
    .gallery {
        -ms-flex: 47%;
        flex: 47%;
        max-width: 47%;
      }
}
table{

    display:flex;
    justify-content: center;
    margin: auto;
   border:2px #12c6d3 solid;
   width: 450px;
   margin-bottom: 40px;
   box-shadow: 5px  10px 10px 3px #7e7979;
}
td{ color:rgb(0, 0, 0); 
    padding: 10px;
    text-transform: capitalize; 
     border:1px rgb(211, 207, 207) solid; 
     width:200px;
    
}
tr:hover{
   background-color: rgb(106, 180, 223);
   color: white;
}
.head{
    background-color: rgb(0, 225, 255);
  
}
.t{
background-color: rgb(5, 156, 194);
}
.n{
    
}
p{
    text-align: center;
    text-transform: uppercase;
}
p span{
    color: indigo;
    font-weight: bold;
    font-size: 20px;
}
@media(max-width:600px){

    table{
        width:320px
    }

}